home *** CD-ROM | disk | FTP | other *** search
/ CD PowerPlay 5 / CD Powerplay Issue 5 (IDG Media)(September-October 1995).bin / share / astrof / install.bat < prev    next >
Encoding:
DOS Batch File  |  1995-07-13  |  533 b   |  26 lines

  1. echo off
  2. If "%1"=="" goto nodrive
  3. If "%2"=="" goto nodrive
  4. md %1:\%2
  5. copy zipfile.exe %1:\%2
  6. %1:
  7. cd \%2
  8. zipfile -d
  9. del zipfile.exe
  10. cls
  11. echo.
  12. echo   Type ASTRO to start the game.
  13. echo.
  14. goto end
  15. :nodrive
  16. cls
  17. echo.
  18. echo   Type INSTALL C NEWDIR where C is the letter of your hard drive
  19. echo   and NEWDIR is the name of the directory you want to install the
  20. echo   game into.
  21. echo   There is no need to type in either the : or the /.
  22. echo.
  23. echo   E.g. INSTALL C NEWDIR to install the game to C:\NEWDIR
  24. echo.
  25. :end
  26.